home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / libc / Makefile < prev    next >
Encoding:
Makefile  |  1992-04-17  |  461 b   |  20 lines

  1. INCLUDE=../include
  2. DEFINES=-I$(INCLUDE)
  3. COPTS=-O # -g -p
  4. CFLAGS=$(COPTS) $(DEFINES)
  5. # workaround for System V make bug
  6. SHELL = /bin/sh
  7.  
  8. OBJS = closeall.o efopen.o error.o fgetmfs.o getdate.o nfclose.o \
  9.     fgetfln.o cfgetln.o fgetline.o dogets.o \
  10.     stdfdopen.o warning.o emalloc.o split.o \
  11.     getabsdate.o getindate.o datetok.o dateconv.o qmktime.o hash.o hdbm.o
  12.  
  13. u:    $(OBJS)
  14.     ar ruv ../libcnews.a $(OBJS)
  15.  
  16. all:    $(OBJS)
  17.  
  18. clean:
  19.     rm -f *.o *.a getdate.c y.*.h y.*.c
  20.